home *** CD-ROM | disk | FTP | other *** search
/ MacFormat España 4 / MacFormat n. 4 (Spain) / MacFormat 4.bin / Demos / Dazzleoids / SHARED.DIR / 00863.ls < prev    next >
Encoding:
Text File  |  1994-10-13  |  233 b   |  19 lines

  1. on keyDown
  2.   shutUp()
  3.   if the key = RETURN then
  4.     doSomething()
  5.   end if
  6.   if the key = ENTER then
  7.     doSomething()
  8.   end if
  9. end
  10.  
  11. on doSomething
  12.   global gOnOK
  13.   if gOnOK = 1 then
  14.     go("pick")
  15.   else
  16.     play done
  17.   end if
  18. end
  19.